@charset "utf-8";
.header {
  background-color: #fff;
  padding: 40px 50px 0;
}

.header .logo {
  width: auto;
  height: auto;
}

.header .logo img {
  width: 242px;
  height: 50px;
}

.header .header-right {
  display: flex;
  align-items: center;
  padding-top: 13px;
}

.header .search {
  width: 300px;
  height: 36px;
  border-radius: 19px;
  border: 1px solid #AAAEB5;
  position: relative;
}

.header .search input {
  width: 100%;
  height: 100%;
  padding: 0;
  padding-left: 20px;
  border-radius: 19px;
  border: none;
  font-family: font-max;
}

.header .search input::placeholder {
  color: #9599A0;
}

.header .search img {
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 6px;
}

.header .login {
  display: flex;
  align-items: center;
  margin: 0 30px;
  color: #1848BC;
  font-weight: bold;
  font-family: font-max;
}

.header .login .cut {
  padding: 0 10px;
}

.header .login .text {
  margin-left: 10px;
}

.header .login img {
  width: 24px;
  height: 24px;
}

.header .login .icon {
  display: block;
}

.header .login .icon_a {
  display: none;
}

.header .language span {
  color: #9599A0;
  font-family: font-max;
}

.header .language a {
  font-size: 14px;
  color: #9599A0;
  font-weight: bold;
  font-family: font-max;
}

.header .language a:hover {
  color: #1848BC;
}

.header .language .active {
  color: #1848BC;
}

.header .nav {
  display: flex;
  padding-top: 5px;
}

.header .nav .item {
  flex: 1;
  max-width: 200px;
  line-height: 60px;
  font-size: 20px;
  color: #353535;
  text-align: center;
  transition: all 0.3s ease-in-out;
  font-family: font-max;
  position: relative;
}

.header .nav .item:hover {
  color: #1848BC;
}

.header .nav .item:hover,
.header .nav .item.active {
  color: #1848BC;
}

.header .nav .item::after {
  content: '';
  width: 90px;
  height: 3px;
  background-color: #1848BC;
  position: absolute;
  left: 50%;
  margin-left: -45px;
  bottom: 0;
  opacity: 0;
  transform: translate(0) scaleX(0);
  transition: .3s ease-in-out;
}


.header .nav .item.active::after {
  opacity: 1;
  transform: translate(0) scaleX(1);
}

.header .nav .item:hover::after {
  opacity: 1;
  transform: translate(0) scaleX(1);
}